export declare const TileSize: { readonly MD: "md"; readonly LG: "lg"; }; export type TileSize = (typeof TileSize)[keyof typeof TileSize]; export declare const TileColor: { readonly ERROR: "error"; readonly NEUTRAL: "neutral"; readonly SUCCESS: "success"; }; export type TileColor = (typeof TileColor)[keyof typeof TileColor];