import React, { HTMLAttributes } from 'react';
import './Breakpoint.scss';
type At = {
at: string;
gt?: undefined;
lt?: undefined;
};
type GreaterThan = {
at?: undefined;
gt: string;
lt?: undefined;
};
type LessThan = {
at?: undefined;
gt?: undefined;
lt: string;
};
export type BreakpointProps = (At | GreaterThan | LessThan) & HTMLAttributes;
export declare const Breakpoint: React.FC;
export {};