import { FC, PropsWithChildren, CSSProperties } from "react"; /** * Defines the props for the NvCol component, extending PropsWithChildren. * Includes alignment, offset, order, and size properties for different screen sizes. */ interface NvColProps extends PropsWithChildren { alignSelfLg?: string; alignSelfMd?: string; alignSelfSm?: string; alignSelfXl?: string; alignSelfXs?: string; offsetLg?: string; offsetMd?: string; offsetSm?: string; offsetXl?: string; offsetXs?: string; orderLg?: string; orderMd?: string; orderSm?: string; orderXl?: string; orderXs?: string; sm?: string; xl?: string; xs?: string; lg?: string; md?: string; className?: string; style?: CSSProperties; } /** * Functional component for a column layout element. * * @param children - The content to be displayed within the column. * @param className - Additional CSS class names to be applied to the column. * @param style - Inline styles to be applied to the column. * @returns A div element representing a column with specified children, styles, and classes. */ export declare const NvCol: FC; export {};