export interface DrawerTheme {
    base: string;
    header: {
        base: string;
        text: string;
    };
    content: string;
    disablePadding: string;
    closeButton: {
        base: string;
        headerless: string;
    };
    positions: {
        top: string;
        end: string;
        bottom: string;
        start: string;
    };
}
export declare const drawerTheme: DrawerTheme;
export declare const legacyDrawerTheme: DrawerTheme;
