import type { Theme } from '../../theme/types'; import type { ButtonVariant } from './types'; /** * Returns a StyleSheet for the given variant and theme. * Called inside the Button component (recreated on theme change via useMemo). */ export declare function createButtonStyles(theme: Theme, variant: ButtonVariant, bgRole?: string, fgRole?: string): { container: object; label: object; disabledContainer: { backgroundColor: string; borderColor: string; borderWidth: number; }; disabledLabel: { color: string; }; iconWrapper: { marginEnd: number; }; }; //# sourceMappingURL=Button.styles.d.ts.map