import type { DismissiblePagePanels } from '../types/shared-page-types.js'; type UseConditionalPagePanelProps = { /** The name of the panel. */ name: DismissiblePagePanels; /** The default dismissed state of the panel (uncontrolled). */ defaultDismissed?: boolean; /** The dismissed state of the panel (controlled). */ dismissed?: boolean; /** Whether the panel should be shown depending on the current viewport size. */ showPanel: boolean; /** The breakpoint where the panel switches from a drawer to a panel. */ breakpoint: number; }; /** * The hook is used to set the initial state of the side panels and to update * the panel's state depending on the received props. * @internal */ export declare function useConditionalPagePanel(props: UseConditionalPagePanelProps): void; export {};