import { Scale } from '../../variations';
export declare const FOOTER_ITEM_SCALES: readonly ["sm", "md"];
export type FooterItemScale = Extract<Scale, (typeof FOOTER_ITEM_SCALES)[number]>;
export declare const FOOTER_ITEM_PADDING: readonly ["xs", "sm", "md", "lg"];
export type FooterItemPadding = Extract<Scale, (typeof FOOTER_ITEM_PADDING)[number]>;
export type FooterItemProperties = {
    /**
     * Scale of the footer item. Impacts the size of the text.
     *
     * @default 'sm'
     **/
    scale?: FooterItemScale;
    /**
     * Padding of the footer item. Impacts the size of the item.
     *
     * @default 'md'
     **/
    padding?: FooterItemPadding;
};
