import { ReactNode } from 'react'; export type TScale = 's' | 'm' | 'l'; export type TInsetSquishProps = { /** sets the amount of `padding` applied around the children */ scale?: TScale; /** sets the height of the component to 100% of the available width ('expanded') or 'auto' */ height?: 'collapsed' | 'expanded'; children: ReactNode; }; declare const InsetSquish: { ({ scale, height, ...props }: TInsetSquishProps): import("@emotion/react/jsx-runtime").JSX.Element; displayName: string; }; export default InsetSquish;