import * as React from 'react'; import { VerticalAlignment } from '../Types'; interface IQuickProps { /** @ignore */ className?: string; /** @ignore */ children?: React.ReactNode; /** * Flex vertical alignment of \`top\`, \`center\` or \`bottom\`. By default, * 'center' is used. * @default center */ align?: VerticalAlignment; /** Optional flex gap (as a string, e.g. "8px"). */ gap?: string; } declare const Quick: (props: IQuickProps) => JSX.Element; export { Quick, IQuickProps };