import React from 'react';
import { IContainerStandAlone } from './types/container';
/**
 * Represents the standalone container component.
 * @see {@link https://kubit.es/standalone-components/container/container-standalone/}
 *
 * @function ContainerStandAloneComponent
 * @category StandAlone Components
 * @param {React.PropsWithChildren<IContainerStandAlone>} props - The props for the component.
 * @param {React.ForwardedRef<HTMLDivElement>} ref - The ref for the component.
 * @returns {JSX.Element} - The JSX element representing the container component.
 */
export declare const ContainerStandAlone: React.ForwardRefExoticComponent<IContainerStandAlone & {
    children?: React.ReactNode | undefined;
} & React.RefAttributes<HTMLDivElement>>;
