interface Props { /** * Gap between child elements. */ gap?: string; /** * The contents of this row be vertically centred. */ centred?: boolean; /** * This row should grow to fit parent container. */ grow?: boolean; } /** * Generic Flex Column */ export declare const Row: import("styled-components").StyledComponent<"div", any, Props, never>; export {};