import { ComponentProps } from 'react';
export interface StateContainerProps extends ComponentProps<"div"> {
    grow?: boolean;
    padding?: boolean;
}
/**
 * Standard container for state components, like Spinner, EmptyState, ErrorState
 * Guarantees consistent spacing
 * */
export declare const StateContainer: ({ className, grow, padding, ...props }: StateContainerProps) => import("react").JSX.Element;
