import { ComponentPropsWithoutRef } from 'react';
import { LayoutUtilProps } from '../../types';
/**
* Props for the PageFooter component
* @extends ComponentPropsWithoutRef<"div">
* @extends LayoutUtilProps
*/
export type PageFooterProps = ComponentPropsWithoutRef<"div"> & LayoutUtilProps;
/**
* PageFooter component for creating page footers with layout utilities.
*
* Features:
* - Semantic footer element
* - Layout utility props support
* - Responsive design
* - Accessibility support with proper footer landmark
* - Flexible content positioning
* - Portals into Page's footer slot via context
*
* @example
*
* Footer content with layout utilities
*
*/
export declare const PageFooter: import('react').ForwardRefExoticComponent, HTMLDivElement>, "ref"> & LayoutUtilProps & import('react').RefAttributes>;