import React from 'react';
type DaySelectProp = {
    disabled?: boolean;
    onChange(value: null | string): void;
    value: string;
    multi?: false;
} | {
    multi: true;
    disabled?: boolean;
    onChange(value: string[]): void;
    value: string[];
};
declare const DaySelect: React.FunctionComponent<DaySelectProp>;
export default DaySelect;
