import { type ButtonSize, type ButtonVariant } from './button-types'; interface ButtonContentOptions { namespace: 'button-filled' | 'button-unfilled'; variant: ButtonVariant; size: ButtonSize; label: string; icon: string; hasMenu: boolean; isLoading: boolean; dot?: { visible: boolean; background: string; }; } /** One content renderer shared by both semantic button components. */ export declare function renderButtonContent(options: ButtonContentOptions): any[]; export {}; //# sourceMappingURL=button-render.d.ts.map