import type { WordPressComponentProps } from '@wordpress/components/build-types/context'; /** * Internal dependencies */ import type { FooterProps } from './types'; import './style.scss'; /** * Renders a wrapper for the footer of the application. * * Any children passed to this component will be rendered inside the footer. * * @since 0.1.0 * * @param props - Component props. * @returns The component to be rendered. */ declare function InternalFooter(props: WordPressComponentProps): import("react").JSX.Element; declare const Footer: typeof InternalFooter & { displayName: string; Slot: { (props: import("@wordpress/components/build-types/slot-fill/types").DistributiveOmit): import("react").JSX.Element; displayName: string; __unstableName: import("@wordpress/components/build-types/slot-fill/types").SlotKey; } & { displayName: string; }; }; /** * Hook to check whether any fills are provided for the Footer slot. * * @since 0.1.0 * * @returns True if there are any Footer fills, false otherwise. */ export declare function useHasFooter(): boolean; export default Footer; //# sourceMappingURL=index.d.ts.map