import { SvelteComponentTyped } from "svelte";

export type ProfileMenuDetailProps = {
  /**
   * Specify the label describing the value (for example, "Plan" or "Location").
   * @default undefined
   */
  label?: string;

  action?: (this: void) => void;

  children?: (this: void) => void;
};

export default class ProfileMenuDetail extends SvelteComponentTyped<
  ProfileMenuDetailProps,
  Record<string, any>,
  {
    default: Record<string, never>;
    action: Record<string, never>;
  }
> {}
