import { Variant } from '../../variations';
export declare const FOOTER_VARIANTS: readonly ["neutral", "brand"];
export type FooterVariant = Extract<Variant, (typeof FOOTER_VARIANTS)[number]>;
export type FooterProperties = {
    /**
     * Footer variant theme
     */
    variant?: FooterVariant;
};
