import React from 'react'; import { BoxButtonProps } from '../silke-box'; import { SilkeIcons } from '../silke-icon'; import { SilkeColor } from '../../silke-theme-provider'; type SilkeBigButtonProps = { label: string; subLabel?: string; leftIcon?: SilkeIcons | React.ReactElement; leftIconColor?: SilkeColor; leftIconBgColor?: SilkeColor; rightIcon?: SilkeIcons | React.ReactElement; children?: React.ReactNode; } & BoxButtonProps; export declare function SilkeBigButton({ label, subLabel, leftIcon, rightIcon, children, className, leftIconColor, leftIconBgColor, ...rest }: SilkeBigButtonProps): import("react/jsx-runtime").JSX.Element; export {};