import * as React from "react"; export type SpinnerProps = { onUpButtonPress(): void; onDownButtonPress(): void; /** A flag indicating whether the spinner buttons are disabled. */ disabled: boolean | undefined; }; export declare const Spinner: React.FunctionComponent;