import * as React from 'react';
import { BreakpointEdge } from './utils';
interface ShowAtProps {
    breakpoint: BreakpointEdge;
    children?: React.ReactNode;
}
export declare const ShowAt: React.FunctionComponent<ShowAtProps>;
export default ShowAt;
