import { default as React, ReactNode } from 'react';
export type FooterVariant = 'full' | 'compact';
export interface FooterProps {
/** Footer variant - full for landing pages, compact for app pages */
variant?: FooterVariant;
/** Whether the footer should stick to the bottom */
sticky?: boolean;
/** Additional CSS classes */
className?: string;
/** Footer content */
children: ReactNode;
}
/**
* Footer - Main footer container component
*
* @example
* ```tsx
* // Full footer for landing pages
*
*
* // Compact footer for app pages
*
* ```
*/
export declare const Footer: React.FC;
//# sourceMappingURL=Footer.d.ts.map