import type { ButtonSize, ButtonType, ButtonVariation } from "./Button.types"; /** * The props that are used to style the button */ export interface UseButtonStylesProps { size?: ButtonSize; disabled?: boolean; fullWidth?: boolean; loading?: boolean; variation?: ButtonVariation; type?: ButtonType; } export declare function useButtonStyles({ size: sizeProp, disabled, fullWidth, loading, variation, type, }: UseButtonStylesProps): { wrapper: string; children: string; combined: string; };