import type { ReactNode, MouseEvent } from 'react'; interface SecondaryButtonProps { onClick: (event: MouseEvent) => void; disabled?: boolean; children: ReactNode; fullWidth: boolean; uieName?: string; } export declare const SecondaryButton: ({ onClick, disabled, fullWidth, uieName, children }: SecondaryButtonProps) => import("@emotion/react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=SecondaryButton.d.ts.map