///
import { Theme } from 'styled-components';
import { BaseCSSProperties } from '../../types';
export interface Props extends BaseCSSProperties {
fit: 'fill' | 'contain' | 'cover' | 'scale' | 'none';
align: string;
}
export interface ThemedProps extends Props {
theme: Theme;
}
declare const Fit: import("styled-components").IStyledComponent<"web", import("styled-components/dist/types").Substitute, HTMLDivElement>, Props>>;
export default Fit;