import { FC, PropsWithChildren } from "react"; /** * NvContainerProps interface for defining props of NvContainer component. * Extends PropsWithChildren interface. * @param tag Represents html tag. "div" by default. * @param fluid Represents if the container should be fluid. */ interface NvContainerProps extends PropsWithChildren { /** Represents html tag. "div" by default. */ tag?: string; /** Represents if the container should be fluid or not */ fluid?: boolean; } /** * Functional component for a container element with customizable tag and fluid behavior. * * @param tag Represents the HTML tag to be rendered. Defaults to "div". * @param fluid Represents if the container should be fluid or not. */ export declare const NvContainer: FC; export {};