import { BoxProps, CompoundStylesApiProps, ElementProps, Factory } from '../../../core';
export type EmptyStateDescriptionStylesNames = 'description';
export interface EmptyStateDescriptionProps extends BoxProps, CompoundStylesApiProps<EmptyStateDescriptionFactory>, ElementProps<'p'> {
    /** Description content */
    children?: React.ReactNode;
}
export type EmptyStateDescriptionFactory = Factory<{
    props: EmptyStateDescriptionProps;
    ref: HTMLParagraphElement;
    stylesNames: EmptyStateDescriptionStylesNames;
    compound: true;
}>;
export declare const EmptyStateDescription: import("../../..").MantineComponent<{
    props: EmptyStateDescriptionProps;
    ref: HTMLParagraphElement;
    stylesNames: EmptyStateDescriptionStylesNames;
    compound: true;
}>;
