import { ReactNode } from "react";
import { IExtendedTheme } from "themes/default";
export declare enum orientationType {
    landscape = "landscape",
    portrait = "portrait"
}
export declare enum deviceType {
    tablet = "tablet",
    smartphone = "smartphone"
}
export interface Device {
    variant: deviceType.tablet | deviceType.smartphone;
}
export declare type FrameProps = Device & {
    children?: ReactNode;
    className?: string;
    glow?: boolean;
    highlight?: boolean;
    orientation?: orientationType.portrait | orientationType.landscape;
    theme: IExtendedTheme;
    width?: number;
    height?: number;
    isEmpty?: boolean;
};
declare const _default: import("styled-components").StyledComponent<({ children, variant, width, orientation, ...rest }: Readonly<FrameProps>) => JSX.Element, any, {}, never>;
export default _default;
