UNPKG

676 BTypeScriptView Raw
1export interface ImageListClasses {
2 /** Styles applied to the root element. */
3 root: string;
4 /** Styles applied to the root element if `variant="masonry"`. */
5 masonry: string;
6 /** Styles applied to the root element if `variant="quilted"`. */
7 quilted: string;
8 /** Styles applied to the root element if `variant="standard"`. */
9 standard: string;
10 /** Styles applied to the root element if `variant="woven"`. */
11 woven: string;
12}
13export type ImageListClassKey = keyof ImageListClasses;
14export declare function getImageListUtilityClass(slot: string): string;
15declare const imageListClasses: ImageListClasses;
16export default imageListClasses;