export type CallToActionTypes = "primary" | "secondary" | "tertiary"; export type PrimaryAndTertiaryTypes = "primary" | "tertiary"; export type SecondaryTypes = "primary" | "secondary"; export type QuaternaryTypes = "primary" | "secondary" | "tertiary" | "quaternary"; export type SideProps = "left" | "right"; export type StarIconTypes = "gold" | "gray"; export declare const columnValues: readonly [1, 2, 3, 4, undefined]; export type ColumnTypes = (typeof columnValues)[number]; export type AnchorPointTypes = "default" | "top left" | "top right" | "bottom left" | "bottom right";