import { Scale } from '../../variations';
export declare const LIST_SCALES: readonly ["sm", "md", "lg"];
export type ListScale = Extract<Scale, (typeof LIST_SCALES)[number]>;
export type ListProperties = {
    /**
     * Whether list items have borders
     */
    hasBorder?: boolean;
    /**
     * Size of the list items
     */
    scale?: ListScale;
};
