import React from 'react';
import { WithGuiTheme } from '../../assets/theme';
import { GuiDateRangePickerProps } from './GuiDateRangePicker.type';
import './react-date-range.scss';
import './react-date-range-override.scss';
declare type WithStyled = GuiDateRangePickerProps & WithGuiTheme;
declare const styled: (component: React.FC<WithStyled>) => import("@emotion/styled").StyledComponent<GuiDateRangePickerProps & WithGuiTheme & {
    children?: React.ReactNode;
} & {
    theme?: import("@emotion/react").Theme;
}, {}, {}>;
export default styled;
