///
interface StyledProps {
disabled?: boolean;
inverted?: boolean;
buttonColor?: {
normal: string;
hover: string;
};
}
interface SpinnerProps {
inverted?: boolean;
spinnerColor?: {
normal: string;
hover: string;
};
}
export declare const StyledButton: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute, HTMLButtonElement>, StyledProps>> & string;
export declare const Spinner: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components/dist/types").Substitute, HTMLDivElement>, "ref"> & {
ref?: ((instance: HTMLDivElement | null) => void) | import("react").RefObject | null | undefined;
}, SpinnerProps>> & string;
export {};