import type { FC, PropsWithChildren } from 'react'; export interface SecondaryButtonProps { colorVariant?: 'default' | 'link'; className?: string; disabled?: boolean; onClick: () => void; } export declare const SecondaryButton: FC>;