/**
* File Name: Embed
*/
/** @jsx jsx */
import React from 'react';
import { ICoreBase } from '../../core';
export declare enum Shapes {
    landscape = "landscape",
    square = "square"
}
export interface Iembed extends ICoreBase {
    src?: string;
    frameBorder?: number;
    allowFullScreen?: boolean;
    variant?: string;
    ariaLabel?: string;
    title?: string;
    ariaHidden?: boolean;
}
export declare type variants = {
    variant: string | undefined;
    css: any;
};
export declare const Embed: React.ForwardRefExoticComponent<Iembed & React.RefAttributes<HTMLDivElement>>;
