import type { ComponentType } from 'react';
/**
 * Hook to manage layout selection.
 * Returns the layout Component and its props.
 */
export declare const useLayout: () => {
    Component: ComponentType<Record<string, unknown>>;
    props: Record<string, unknown>;
};
