import type { ReactNode } from 'react'; import type { ButtonContentProps } from './ButtonContent'; import type { ButtonType, ButtonVariant } from './baseTypes'; /** * Add the proper classes to the final Button element */ export declare const getClassNames: (children: ReactNode, withIcon: boolean, iconPosition: ButtonContentProps['iconPosition'], large: undefined | boolean, xLarge: undefined | boolean, stretch: undefined | boolean, type?: ButtonType, disabled?: boolean, className?: string, variant?: ButtonVariant) => string; //# sourceMappingURL=getClassNames.d.ts.map