import type * as Common from "../common/types";
type Sizes = "extraSmall" | "small" | "medium" | "large" | "display";
export interface Props extends Common.Globals {
    readonly size?: Sizes;
    readonly title?: string;
    readonly description?: string;
    readonly primary?: string;
    readonly secondary?: string;
    readonly ariaLabelledby?: string;
}
export {};
//# sourceMappingURL=types.d.ts.map