export type UnpublishedStatusProps = { /** * Whether to render the pill background. Use a background when placing the * status on top of an image; omit the background when rendering inline next * to other text. * * The pill is always white with dark text — readable over both light and * dark image backgrounds. Defaults to `true`. */ background?: boolean; /** * Status label. Defaults to `"Unpublished changes"`. */ children?: React.ReactNode; } & Omit, "children">; export declare const UnpublishedStatus: ({ background, className, children, ...rest }: UnpublishedStatusProps) => import("react").JSX.Element; //# sourceMappingURL=UnpublishedStatus.d.ts.map