export interface ContentStateProps {
    /**
     * Defines the content state type.
     */
    variant: 'empty' | 'error' | 'loading';
    /**
     * Overrides the default message string.
     */
    message?: string;
}
