/** * Get a list of all available style utilities in the Solid Design System. * @returns Sorted list of style entries (name + description). */ export declare const getAvailableStyles: () => Promise<{ name: string; description: string; }[]>; /** * Get info for a specific style utility. * @param name Style name with or without the "sd-" prefix. */ export declare const getStyleInfo: (name: string) => Promise<{ docs: string | null; classes: string[]; }>;