import type { IconColorNames, IconNames } from "@jobber/design"; import React from "react"; interface Action { label: string; onPress: () => void; disabled?: boolean; } export interface EmptyStateProps { /** * Icon to display. */ readonly icon?: IconNames; /** * Color of Icon to display. */ readonly iconColor?: IconColorNames; /** * Title of the empty state. */ readonly title?: string; /** * Description of the empty state. */ readonly description?: string; /** * Handler for the primary action. */ readonly primaryAction?: Action; /** * Handler for the secondary action. */ readonly secondaryAction?: Action; } export declare function EmptyState({ icon, title, description, primaryAction, secondaryAction, iconColor, }: EmptyStateProps): React.JSX.Element; export {};