export interface SideSheetClasses { /** Class name applied to the root element. */ root: string; /** Class name applied to the container element. */ container: string; /** Class name applied to the root element when anchored to the left. */ anchorLeft: string; /** Class name applied to the root element when anchored to the right. */ anchorRight: string; /** Class name applied to the root element when open. */ open: string; } export type SideSheetClassKey = keyof SideSheetClasses; export declare function getSideSheetUtilityClass(slot: string): string; declare const sideSheetClasses: SideSheetClasses; export default sideSheetClasses;