interface IProps { variant?: 'primary' | 'secondary'; size?: 'small' | 'medium' | 'large'; } /** * This is a custom spinner loader that uses Animated API to create a circular spinner * @param variant - The color of the spinner (primary or secondary) - default is primary * @param size - The size of the spinner (small, medium or large) - default is medium */ export declare const Spinner: ({ variant, size }: IProps) => JSX.Element; export {};