import React, { type ReactNode } from 'react'; export interface IdProviderProps { /** * Children to render. * Maybe a function that receives the unique id as an argument. */ children: ReactNode | ((props: { id: string; }) => ReactNode); /** * A prefix to be added to the generated id. */ prefix?: string; /** * A postfix to be added to the generated id. */ postfix?: string; } /** * __Id provider__ * * An id provider {description}. * * - [Examples](https://atlassian.design/components/{packageName}/examples) * - [Code](https://atlassian.design/components/{packageName}/code) * - [Usage](https://atlassian.design/components/{packageName}/usage) */ export declare const IdProvider: React.ForwardRefExoticComponent & React.RefAttributes>;