export declare const POD_SIZES: readonly ["extra-small", "small", "medium", "large", "extra-large"];
export declare const POD_ALIGNMENTS: readonly ["left", "center", "right"];
export declare const POD_VARIANTS: readonly ["primary", "secondary", "tertiary", "tile", "transparent"];
export type PodSize = (typeof POD_SIZES)[number];
export type PodAlignment = (typeof POD_ALIGNMENTS)[number];
export type PodVariant = (typeof POD_VARIANTS)[number];
