import { PropsWithChildren } from 'react'; import { ButtonProps as PoutineButtonProps } from "../Button"; import "../Icon/svg/chevron-down-lg"; import "../Icon/svg/chevron-up-lg"; export type ButtonProps = PoutineButtonProps & PropsWithChildren<{ variant?: 'primary' | 'secondary' | 'tertiary'; disabled?: boolean; }>; export declare const Button: import("react").ForwardRefExoticComponent & import("react").RefAttributes>;