declare const MainButton: ({ onClick, text, textColor, color, }: { onClick: (callback: () => void) => void; text?: string | undefined; textColor?: string | undefined; color?: string | undefined; }) => null; export default MainButton;