import { CSSProperties, FC, PropsWithChildren } from "react"; interface NvRowProps extends PropsWithChildren { alignContentLg?: string; alignContentMd?: string; alignContentSm?: string; alignContentXl?: string; alignContentXs?: string; alignLg?: string; alignMd?: string; alignSm?: string; alignXl?: string; alignXs?: string; justifyLg?: string; justifyMd?: string; justifySm?: string; justifyXl?: string; justifyXs?: string; noGutters?: boolean; style?: CSSProperties; className?: string; } /** * Functional component representing a row in the NvRow module. * * @param children - The content to be displayed within the row. * @param noGutters - A boolean indicating whether to remove gutters from the row. * @param style - Inline styles to be applied to the row. * @param className - Additional CSS class names to be applied to the row. * @returns The rendered NvRow component. */ export declare const NvRow: FC; export {};