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