import type { JSX } from 'solid-js'; import type { DisclosureStateRenderProps } from '../../states/create-disclosure-state'; import type { UnmountableProps } from '../../utils/create-unmountable'; import type { HeadlessProps, ValidConstructor } from '../../utils/dynamic-prop'; import type { Prettify } from '../../utils/types'; export type DisclosurePanelBaseProps = Prettify; export type DisclosurePanelProps = HeadlessProps; /** * The section a `Disclosure` shows and hides. Unmounts while closed unless * `unmount={false}` is set. * * Renders a `
` by default. * * @see {@link https://github.com/lxsmnsyc/terracotta/blob/main/docs/components/disclosure.md} */ export declare function DisclosurePanel(props: DisclosurePanelProps): JSX.Element; //# sourceMappingURL=DisclosurePanel.d.ts.map